home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
World Tours: Brazil
/
WorldTours: Brazil.iso
/
pc
/
content
/
main.dir
/
00101_Script_again
< prev
next >
Wrap
Text File
|
2007-04-22
|
424b
|
27 lines
property pSelf
on beginsprite
pSelf=sprite(the currentSpriteNum)
end
on mouseenter
if pSelf.member=member("try again") then
pSelf.forecolor=5
--cursor 280
end if
end
on mouseleave
if pSelf.member=member("try again") then
pSelf.forecolor=255
--cursor -1
end if
end
on mouseup
if pSelf.member=member("try again") then
pSelf.forecolor=0
tryAgain()
end if
end